home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr50 / bcc101.zip / DIALOG.ZIP / DIALOG.BI < prev    next >
Text File  |  1993-01-13  |  884b  |  22 lines

  1.         '''''''''''''''''''''''''''''''''''''''''''''''''''''''
  2.         '                      dialog.bi                      '
  3.         '                                                     '
  4.         '''''''''''''''''''''''''''''''''''''''''''''''''''''''
  5. '
  6. DEFINT A-Z
  7.  
  8. DECLARE SUB BoxDialog (Top%, BoxWidth%, Border$, Msg$, MsgClr%, Shadow%)
  9. DECLARE FUNCTION ClrAttr% (fg%, bg%)
  10. DECLARE SUB DoShadow (row%, col%)
  11. DECLARE SUB VidInfo ()
  12. DECLARE SUB WriteStr (A$, row%, col%, attr%)
  13.  
  14. COMMON SHARED /VInfo/ Vmode%, VidSeg%, MonRows%, MonCols%
  15.  
  16.         '''''''''''''''''''''''''''''''''''''''''''''''''''''''
  17.         '  compile ->  bc dialog /o;                          '
  18.         '  link ->     link /e YourProg + dialog, , nul, qb;  '
  19.         '                                                     '
  20.         '''''''''''''''''''''''''''''''''''''''''''''''''''''''
  21.  
  22.